home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / libraries / configvars.inc < prev    next >
Text File  |  1998-06-24  |  648b  |  36 lines

  1. include "inc/exec/types.inc";
  2. include "inc/exec/nodes.inc";
  3. include "inc/libraries/configregs.inc";
  4.  
  5. struct ConfigDev is
  6.   cd_Node:Node;
  7.   cd_Flags:ubyte;
  8.   cd_Pad:ubyte;
  9.   cd_Rom:ExpansionRom;
  10.   cd_BoardAddr:ulong;
  11.   cd_BoardSize:ulong;
  12.   cd_SlotAddr:uword;
  13.   cd_SlotSize:uword;
  14.   cd_Driver:ulong;
  15.   cd_NextCD:ulong;
  16.   cd_Unused[4]:ulong;
  17. ;
  18.  
  19. def CDB_SHUTUP = 0;
  20. def CDB_CONFIGME = 1;
  21. def CDB_BADMEMORY = 2;
  22. def CDB_PROCESSED = 3;
  23.  
  24. def CDF_SHUTUP = $01;
  25. def CDF_CONFIGME = $02;
  26. def CDF_BADMEMORY = $04;
  27. def CDF_PROCESSED = $08;
  28.  
  29. struct CurrentBinding is
  30.   cb_ConfigDev:ulong;
  31.   cb_FileName:ulong;
  32.   cb_ProductString:ulong;
  33.   cb_ToolTypes:ulong;
  34. ;
  35.  
  36.